Log in Register Dashboard Temp Share Shortlinks Frames API

cody - HTMLify profile

cody's Profile Picture

cody

4270 Files

636137 Views

Latest files of /cody/swapnilsparsh/30DaysOfJavaScript/53 - Notes Taking App

reshot-icon-delete-KL8MB62NXD.png cody/swapnilsparsh/30DaysOfJavaScript/53 - Notes Taking App/reshot-icon-delete-KL8MB62NXD.png
90 Views
0 Comments
Media file
icon.png cody/swapnilsparsh/30DaysOfJavaScript/53 - Notes Taking App/icon.png
91 Views
0 Comments
Media file
style.css cody/swapnilsparsh/30DaysOfJavaScript/53 - Notes Taking App/style.css
131 Views
0 Comments
:root {
--bg: #19172e;
--btn: #9c528b;
--card: #b9929f;
}
* {
font-family: sans-serif;
transition: 0.5s ease;
index.html cody/swapnilsparsh/30DaysOfJavaScript/53 - Notes Taking App/index.html
339 Views
0 Comments
<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="shortcut icon" href="./icon.png" type="image/png" />
script.js cody/swapnilsparsh/30DaysOfJavaScript/53 - Notes Taking App/script.js
197 Views
0 Comments
const notesContainer = document.getElementById("app");
const addNoteButton = notesContainer.querySelector(".add-note");

let delete_element = false;
getNotes().forEach(note => {
const noteElement = createNoteElement(note.id, note.content);
notesContainer.insertBefore(noteElement, addNoteButton);
});